home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Grafik / Paint / ArtEffect4 / Rexx / plugin.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1998-05-18  |  353 b   |  26 lines

  1. /*
  2.     I/O Rexx Example
  3. */
  4.  
  5. options results
  6.  
  7. address "ArtEffect"
  8.  
  9. lockgui
  10. loadpic 'arteffect:pictures/strand_320.jpg'
  11.  
  12. /*address command wait 5*/
  13.  
  14. domethod twirl angle '-20'
  15. domethod antique color
  16.  
  17. /*
  18.     IMPORTANT!
  19.     Without leaving the plugins they can
  20.     not be reached from menu anymore.
  21. */
  22. domethod antique noexec quit
  23. domethod twirl noexec quit
  24. unlockgui
  25.  
  26.